home *** CD-ROM | disk | FTP | other *** search
/ Lip Tissue / Lip Tissue - Disc 1.iso / pc / _b_v_ebb.v11 / CONFIG / ras_2.ls < prev    next >
Encoding:
Text File  |  1997-03-02  |  1.1 KB  |  47 lines

  1. on enterFrame
  2.   global xautospeed, xfast, xmiddle, xslow, xvolume
  3.   if xautospeed = xfast then
  4.     set the hilite of cast "fast" to 1
  5.   else
  6.     if xautospeed = xmiddle then
  7.       set the hilite of cast "middle" to 1
  8.     else
  9.       if xautospeed = xslow then
  10.         set the hilite of cast "slow" to 1
  11.       end if
  12.     end if
  13.   end if
  14.   if xvolume = 0 then
  15.     set the hilite of cast "VOL-0" to 1
  16.   else
  17.     if xvolume = 1 then
  18.       set the hilite of cast "VOL-1" to 1
  19.     else
  20.       if xvolume = 2 then
  21.         set the hilite of cast "VOL-2" to 1
  22.       else
  23.         if xvolume = 3 then
  24.           set the hilite of cast "VOL-3" to 1
  25.         else
  26.           if xvolume = 4 then
  27.             set the hilite of cast "VOL-4" to 1
  28.           else
  29.             if xvolume = 5 then
  30.               set the hilite of cast "VOL-5" to 1
  31.             else
  32.               if xvolume = 6 then
  33.                 set the hilite of cast "VOL-6" to 1
  34.               else
  35.                 if xvolume = 7 then
  36.                   set the hilite of cast "VOL-7" to 1
  37.                 end if
  38.               end if
  39.             end if
  40.           end if
  41.         end if
  42.       end if
  43.     end if
  44.   end if
  45.   go(2)
  46. end
  47.